【例子介绍】酒店管理系统(C# SQL2005)【完整源码】 希望对大家有用
【相关图片】
【源码结构】
文件清单
└── C# 酒店管理
├── 下载说明.html
├── 源码网说明.txt
└── 酒店管理系统
├── DB
│ ├── GinShop_log.LDF
│ └── GinShop.mdf
└── 酒店管理系统
├── BinBal
│ ├── bin
│ │ └── Debug
│ │ ├── BinBal.dll
│ │ ├── BinBal.pdb
│ │ ├── BinModel.dll
│ │ └── BinModel.pdb
│ ├── BinDal.csproj
│ ├── CustomBookServices.cs
│ ├── CustomersServices.cs
│ ├── Dals.cs
│ ├── DeleteEmloyeeSalary.cs
│ ├── EmployeeSalaryBinDal.cs
│ ├── EmployeeSalaryServer.cs
│ ├── EmployeeServices.cs
│ ├── EmpStateServices.cs
│ ├── Everyserver.cs
│ ├── GoodsServices.cs
│ ├── GroupRegisServices.cs
│ ├── JobServices.cs
│ ├── obj
│ │ ├── BinBal.csproj.FileList.txt
│ │ ├── BinDal.csproj.FileList.txt
│ │ └── Debug
│ │ ├── BinBal.dll
│ │ ├── BinBal.pdb
│ │ ├── BinDal.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── BinBal.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── PopedomsServices.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ProvincesServices.cs
│ ├── RolesServices.cs
│ ├── RoomLevelServices.cs
│ ├── RoomServices.cs
│ ├── RP_compareServices.cs
│ ├── SearchIdServer.cs
│ ├── UR_compareServices.cs
│ └── UsersServices.cs
├── BinBll
│ ├── bin
│ │ └── Debug
│ │ ├── BinBal.dll
│ │ ├── BinBal.pdb
│ │ ├── BinBll.dll
│ │ ├── BinBll.pdb
│ │ ├── BinModel.dll
│ │ └── BinModel.pdb
│ ├── BinBll.csproj
│ ├── Blls.cs
│ ├── CustomerManager.cs
│ ├── DeleteManager.cs
│ ├── EmployeeManager.cs
│ ├── EmployeeSalaryBinBllBll.cs
│ ├── EmployeeSalaryManage.cs
│ ├── EmpStateManager.cs
│ ├── Everymanager.cs
│ ├── GoodsManager.cs
│ ├── GroupManager.cs
│ ├── JobManager.cs
│ ├── obj
│ │ ├── BinBll.csproj.FileList.txt
│ │ └── Debug
│ │ ├── BinBll.csproj.FileListAbsolute.txt
│ │ ├── BinBll.dll
│ │ ├── BinBll.pdb
│ │ ├── Refactor
│ │ │ └── BinBll.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── PopedomsManager.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ProvinceManager.cs
│ ├── RoleManager.cs
│ ├── RoomLevelManager.cs
│ ├── RoomsManager.cs
│ ├── RP_compareManager.cs
│ ├── SearchIdManager.cs
│ ├── UR_compareManager.cs
│ └── UsersManager.cs
├── BinModel
│ ├── bin
│ │ └── Debug
│ │ ├── BinModel.dll
│ │ └── BinModel.pdb
│ ├── BinModel.csproj
│ ├── CustomBooks.cs
│ ├── Customers.cs
│ ├── Employee.cs
│ ├── EmployeeSalaryBinModel.cs
│ ├── EmpState.cs
│ ├── Goods.cs
│ ├── GroupBook.cs
│ ├── GroupRegis.cs
│ ├── JobPosition.cs
│ ├── obj
│ │ ├── BinModel.csproj.FileList.txt
│ │ └── Debug
│ │ ├── BinModel.csproj.FileListAbsolute.txt
│ │ ├── BinModel.dll
│ │ ├── BinModel.pdb
│ │ ├── Refactor
│ │ │ └── BinModel.dll
│ │ └── TempPE
│ ├── Popedoms.cs
│ ├── ProductPerDay.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Provinces.cs
│ ├── Roles.cs
│ ├── RoomLevel.cs
│ ├── Rooms.cs
│ ├── RP_compare.cs
│ ├── UR_compare.cs
│ └── Users.cs
├── BinTools
│ ├── bin
│ │ └── Debug
│ │ ├── BinTools.dll
│ │ └── BinTools.pdb
│ ├── BinTools.csproj
│ ├── Log.cs
│ ├── obj
│ │ ├── BinTools.csproj.FileList.txt
│ │ └── Debug
│ │ ├── BinTools.csproj.FileListAbsolute.txt
│ │ ├── BinTools.dll
│ │ ├── BinTools.pdb
│ │ ├── Refactor
│ │ │ └── BinTools.dll
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Tools.cs
├── FiveStarGinShopManager
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── BinBal.dll
│ │ ├── BinBal.pdb
│ │ ├── BinBll.dll
│ │ ├── BinBll.pdb
│ │ ├── BinModel.dll
│ │ ├── BinModel.pdb
│ │ ├── BinTools.dll
│ │ ├── BinTools.pdb
│ │ ├── FiveStarGinShopManager.exe
│ │ ├── FiveStarGinShopManager.exe.config
│ │ ├── FiveStarGinShopManager.pdb
│ │ ├── FiveStarGinShopManager.vshost.exe
│ │ ├── FiveStarGinShopManager.vshost.exe.config
│ │ ├── FiveStarGinShopManager.vshost.exe.manifest
│ │ └── image
│ │ ├── BackImage
│ │ │ └── back.jpg
│ │ ├── butterfly
│ │ │ ├── png-0361.ico
│ │ │ ├── png-0362.ico
│ │ │ ├── png-0363.ico
│ │ │ ├── png-0364.ico
│ │ │ ├── png-0365.ico
│ │ │ ├── png-0366.ico
│ │ │ ├── png-0367.ico
│ │ │ ├── png-0368.ico
│ │ │ ├── png-0369.ico
│ │ │ ├── png-0370.ico
│ │ │ ├── png-0371.ico
│ │ │ ├── png-0372.ico
│ │ │ ├── png-0373.ico
│ │ │ ├── png-0374.ico
│ │ │ ├── png-0375.ico
│ │ │ ├── png-0376.ico
│ │ │ ├── png-0377.ico
│ │ │ ├── png-0378.ico
│ │ │ ├── png-0379.ico
│ │ │ ├── png-0380.ico
│ │ │ ├── png-0381.ico
│ │ │ ├── png-0382.ico
│ │ │ ├── png-0383.ico
│ │ │ ├── png-0384.ico
│ │ │ ├── png-0385.ico
│ │ │ ├── png-0386.ico
│ │ │ ├── png-0387.ico
│ │ │ ├── png-0388.ico
│ │ │ ├── png-0389.ico
│ │ │ ├── png-0390.ico
│ │ │ ├── png-0391.ico
│ │ │ ├── png-0392.ico
│ │ │ ├── png-0393.ico
│ │ │ ├── png-0394.ico
│ │ │ ├── png-0395.ico
│ │ │ ├── png-0396.ico
│ │ │ ├── png-0397.ico
│ │ │ ├── png-0398.ico
│ │ │ ├── png-0399.ico
│ │ │ ├── png-0400.ico
│ │ │ └── Thumbs.db
│ │ ├── Login.bmp
│ │ └── start.jpg
│ ├── FiveStarGinShopManager.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── FiveStarGinShopManager.csproj.FileListAbsolute.txt
│ │ │ ├── FiveStarGinShopManager.csproj.GenerateResource.Cache
│ │ │ ├── FiveStarGinShopManager.EmpLoginRegis.resources
│ │ │ ├── FiveStarGinShopManager.exe
│ │ │ ├── FiveStarGinShopManager.pdb
│ │ │ ├── FiveStarGinShopManager.Properties.Resources.resources
│ │ │ ├── FiveStarGinShopManager.UI.Advices.resources
│ │ │ ├── FiveStarGinShopManager.UI.BackGroundImage.resources
│ │ │ ├── FiveStarGinShopManager.UI.CustomerBook.resources
│ │ │ ├── FiveStarGinShopManager.UI.CustomerBooks.resources
│ │ │ ├── FiveStarGinShopManager.UI.CustomerRegister.resources
│ │ │ ├── FiveStarGinShopManager.UI.DataShow.CustomerList.resources
│ │ │ ├── FiveStarGinShopManager.UI.DataShow.Customertest.resources
│ │ │ ├── FiveStarGinShopManager.UI.DataShow.GoodsList.resources
│ │ │ ├── FiveStarGinShopManager.UI.DataShow.GroupList.resources
│ │ │ ├── FiveStarGinShopManager.UI.DataShow.RoomList.resources
│ │ │ ├── FiveStarGinShopManager.UI.Dictionary.DictionaryForm.resources
│ │ │ ├── FiveStarGinShopManager.UI.Dictionary.TableCity.resources
│ │ │ ├── FiveStarGinShopManager.UI.Dictionary.TableJobPosition.resources
│ │ │ ├── FiveStarGinShopManager.UI.Dictionary.TableProvince.resources
│ │ │ ├── FiveStarGinShopManager.UI.EmployeeDel.resources
│ │ │ ├── FiveStarGinShopManager.UI.EmployeeManage.resources
│ │ │ ├── FiveStarGinShopManager.UI.EmployeeRegis.resources
│ │ │ ├── FiveStarGinShopManager.UI.EmployeeTrainManage.resources
│ │ │ ├── FiveStarGinShopManager.UI.EveryDay.AddEmployeeSalary.resources
│ │ │ ├── FiveStarGinShopManager.UI.EveryDay.bianji.resources
│ │ │ ├── FiveStarGinShopManager.UI.EveryDay.EmployeeSalary.resources
│ │ │ ├── FiveStarGinShopManager.UI.EveryDay.Every.resources
│ │ │ ├── FiveStarGinShopManager.UI.EveryDay.UpdateEmployeeSalary.resources
│ │ │ ├── FiveStarGinShopManager.UI.GinPlan.resources
│ │ │ ├── FiveStarGinShopManager.UI.GoodsServer.resources
│ │ │ ├── FiveStarGinShopManager.UI.JobConfig.resources
│ │ │ ├── FiveStarGinShopManager.UI.lblRoomList.resources
│ │ │ ├── FiveStarGinShopManager.UI.LeaveMenu.resources
│ │ │ ├── FiveStarGinShopManager.UI.Leave.resources
│ │ │ ├── FiveStarGinShopManager.UI.Login.resources
│ │ │ ├── FiveStarGinShopManager.UI.OpacityManager.resources
│ │ │ ├── FiveStarGinShopManager.UI.PlanterInfo.resources
│ │ │ ├── FiveStarGinShopManager.UI.Popedom.resources
│ │ │ ├── FiveStarGinShopManager.UI.PopedomsRoles.CurrentRoles.resources
│ │ │ ├── FiveStarGinShopManager.UI.PwdModify.resources
│ │ │ ├── FiveStarGinShopManager.UI.RolePopedom.resources
│ │ │ ├── FiveStarGinShopManager.UI.RolesForm.resources
│ │ │ ├── FiveStarGinShopManager.UI.StartImage.resources
│ │ │ ├── FiveStarGinShopManager.UI.SysDictionary.resources
│ │ │ ├── FiveStarGinShopManager.UI.SysMain.resources
│ │ │ ├── FiveStarGinShopManager.UI.TrainProject.resources
│ │ │ ├── FiveStarGinShopManager.UI.UsersForm.resources
│ │ │ ├── FiveStarGinShopManager.UI.UsersRegis.resources
│ │ │ ├── FiveStarGinShopManager.UI.UserSwitch.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ └── UI.CustomerBook.Designer.cs.dll
│ │ └── FiveStarGinShopManager.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── add.bmp
│ │ ├── del.bmp
│ │ ├── edit.bmp
│ │ ├── exit1.bmp
│ │ ├── exit.bmp
│ │ ├── find.bmp
│ │ └── flush.bmp
│ └── UI
│ ├── Advices.cs
│ ├── Advices.designer.cs
│ ├── Advices.resx
│ ├── BackGroundImage.cs
│ ├── BackGroundImage.Designer.cs
│ ├── BackGroundImage.resx
│ ├── CustomerBook.Designer.cs
│ ├── CustomerBook.resx
│ ├── CustomerBooks.cs
│ ├── CustomerBooks.designer.cs
│ ├── CustomerBooks.resx
│ ├── CustomerRegister.cs
│ ├── CustomerRegister.Designer.cs
│ ├── CustomerRegister.resx
│ ├── DataShow
│ │ ├── CustomerList.cs
│ │ ├── CustomerList.Designer.cs
│ │ ├── CustomerList.resx
│ │ ├── Customertest.cs
│ │ ├── Customertest.Designer.cs
│ │ ├── Customertest.resx
│ │ ├── GoodsList.cs
│ │ ├── GoodsList.Designer.cs
│ │ ├── GoodsList.resx
│ │ ├── GroupList.cs
│ │ ├── GroupList.Designer.cs
│ │ ├── GroupList.resx
│ │ ├── RoomList.cs
│ │ ├── RoomList.Designer.cs
│ │ └── RoomList.resx
│ ├── Dictionary
│ │ ├── DictionaryForm.cs
│ │ ├── DictionaryForm.Designer.cs
│ │ ├── DictionaryForm.resx
│ │ ├── TableCity.cs
│ │ ├── TableCity.Designer.cs
│ │ ├── TableCity.resx
│ │ ├── TableJobPosition.cs
│ │ ├── TableJobPosition.Designer.cs
│ │ ├── TableJobPosition.resx
│ │ ├── TableProvince.cs
│ │ ├── TableProvince.Designer.cs
│ │ └── TableProvince.resx
│ ├── EmpLoginRegis.cs
│ ├── EmpLoginRegis.Designer.cs
│ ├── EmpLoginRegis.resx
│ ├── EmployeeDel.cs
│ ├── EmployeeDel.Designer.cs
│ ├── EmployeeDel.resx
│ ├── EmployeeManage.cs
│ ├── EmployeeManage.Designer.cs
│ ├── EmployeeManage.resx
│ ├── EmployeeRegis.cs
│ ├── EmployeeRegis.Designer.cs
│ ├── EmployeeRegis.resx
│ ├── EmployeeTrainManage.cs
│ ├── EmployeeTrainManage.designer.cs
│ ├── EmployeeTrainManage.resx
│ ├── EveryDay
│ │ ├── AddEmployeeSalary.cs
│ │ ├── AddEmployeeSalary.designer.cs
│ │ ├── AddEmployeeSalary.resx
│ │ ├── bianji.cs
│ │ ├── bianji.designer.cs
│ │ ├── bianji.resx
│ │ ├── EmployeeSalary.cs
│ │ ├── EmployeeSalary.designer.cs
│ │ ├── EmployeeSalary.resx
│ │ ├── Every.cs
│ │ ├── Every.designer.cs
│ │ ├── EveryMoney.cs
│ │ ├── EveryMoney.designer.cs
│ │ ├── Every.resx
│ │ ├── UpdateEmployeeSalary.cs
│ │ ├── UpdateEmployeeSalary.designer.cs
│ │ └── UpdateEmployeeSalary.resx
│ ├── GinPlan.cs
│ ├── GinPlan.Designer.cs
│ ├── GinPlan.resx
│ ├── GoodsServer.cs
│ ├── GoodsServer.Designer.cs
│ ├── GoodsServer.resx
│ ├── JobConfig.cs
│ ├── JobConfig.Designer.cs
│ ├── JobConfig.resx
│ ├── Leave.cs
│ ├── Leave.Designer.cs
│ ├── LeaveMenu.cs
│ ├── LeaveMenu.Designer.cs
│ ├── LeaveMenu.resx
│ ├── Leave.resx
│ ├── Login.cs
│ ├── Login.Designer.cs
│ ├── Login.resx
│ ├── OpacityManager.cs
│ ├── OpacityManager.Designer.cs
│ ├── OpacityManager.resx
│ ├── PlanterInfo.cs
│ ├── PlanterInfo.designer.cs
│ ├── PlanterInfo.resx
│ ├── PopedomsRoles
│ │ ├── CurrentRoles.cs
│ │ ├── CurrentRoles.Designer.cs
│ │ ├── CurrentRoles.resx
│ │ ├── Popedom.cs
│ │ ├── Popedom.Designer.cs
│ │ └── Popedom.resx
│ ├── PwdModify.cs
│ ├── PwdModify.Designer.cs
│ ├── PwdModify.resx
│ ├── RolePopedom.cs
│ ├── RolePopedom.Designer.cs
│ ├── RolePopedom.resx
│ ├── RolesForm.cs
│ ├── RolesForm.Designer.cs
│ ├── RolesForm.resx
│ ├── RoomManage.cs
│ ├── RoomManage.Designer.cs
│ ├── RoomManage.resx
│ ├── StartImage.cs
│ ├── StartImage.Designer.cs
│ ├── StartImage.resx
│ ├── SysDictionary.cs
│ ├── SysDictionary.Designer.cs
│ ├── SysDictionary.resx
│ ├── SysMain.cs
│ ├── SysMain.Designer.cs
│ ├── SysMain.resx
│ ├── TrainProject.cs
│ ├── TrainProject.Designer.cs
│ ├── TrainProject.resx
│ ├── UsersForm.cs
│ ├── UsersForm.Designer.cs
│ ├── UsersForm.resx
│ ├── UsersRegis.cs
│ ├── UsersRegis.Designer.cs
│ ├── UsersRegis.resx
│ ├── UserSwitch.cs
│ ├── UserSwitch.Designer.cs
│ └── UserSwitch.resx
├── FiveStarGinShopManager.sln
├── FiveStarGinShopManager.suo
├── GinShopModels
│ ├── bin
│ │ └── Debug
│ │ ├── GinShopModels.exe
│ │ ├── GinShopModels.pdb
│ │ └── GinShopModels.vshost.exe
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── GinShopModels.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── GinShopModels.csproj.GenerateResource.Cache
│ │ │ ├── GinShopModels.exe
│ │ │ ├── GinShopModels.pdb
│ │ │ ├── GinShopModels.Properties.Resources.resources
│ │ │ └── TempPE
│ │ └── GinShopModels.csproj.FileList.txt
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── GinShopSetUp
│ ├── GinShopSetUp
│ │ ├── Debug
│ │ │ ├── GinShopSetUp.msi
│ │ │ └── setup.exe
│ │ ├── GinShopSetUp.vdproj
│ │ └── Release
│ ├── GinShopSetUp.sln
│ └── GinShopSetUp.suo
├── readme.txt
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── UpgradeReport.css
├── UpgradeReport_Minus.gif
├── UpgradeReport_Plus.gif
└── UpgradeReport.xslt
65 directories, 403 files
评论